Allow indents to be negative. (#Bug 434308)
authorMatthias Clasen <mclasen@redhat.com>
Mon, 30 Apr 2007 15:17:45 +0000 (15:17 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 30 Apr 2007 15:17:45 +0000 (15:17 +0000)
2007-04-30  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktextview.c: Allow indents to be negative.  (#Bug 434308)

svn path=/trunk/; revision=17736

ChangeLog
gtk/gtktextview.c

index 9815b121c2520081436cdf4f2ada8a0bfb82f185..3db567bca634c803a4f15598e1087ca94daa63ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktextview.c: Allow indents to be negative.  (#Bug 434308)
+
 2007-04-30  Michael Natterer  <mitch@imendio.com>
 
        * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): pop up the
index 223ffc99d3eb9bbcec29f37f1d7145177a59dcbc..3005c4497ecc995cea4f7118539944be48971478 100644 (file)
@@ -603,7 +603,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                    g_param_spec_int ("indent",
                                                     P_("Indent"),
                                                     P_("Amount to indent the paragraph, in pixels"),
-                                                    0,
+                                                    G_MININT,
                                                     G_MAXINT,
                                                     0,
                                                     GTK_PARAM_READWRITE));